go/ast.TypeSpec.Assign (field)

10 uses

	go/ast (current package)
		ast.go#L922: 		Assign     token.Pos     // position of '=', if any

	go/parser
		parser.go#L2582: 		spec.Assign = p.pos
		parser.go#L2652: 			spec.Assign = p.pos

	go/printer
		nodes.go#L1724: 		if s.Assign.IsValid() {

	go/types
		decl.go#L249: 					alias = d.tdecl.Assign.IsValid() // package-level object
		decl.go#L563: 	if tdecl.Assign.IsValid() {
		decl.go#L569: 		if !versionErr && !check.verifyVersionf(atPos(tdecl.Assign), go1_9, "type alias") {
		decl.go#L757: 	assert(!check.objMap[obj].tdecl.Assign.IsValid()) // don't use TypeName.IsAlias (requires fully set up object)
		resolver.go#L581: 		if !tdecl.Assign.IsValid() {
		resolver.go#L675: 				if check.objMap[tname].tdecl.Assign.IsValid() {